Nerve to Subclavius
Motor Innervations
#| label: tbl-nerve-to-subclavius-oian #| warning: false #| message: false #| echo: false #| tbl-cap: “Nerve to Subclavius Muscle Innervations”
from pathlib import Path import pandas as pd from pyprojroot import here from IPython.display import display, HTML
Set the path for the script file
script_file_path = here(“scripts/process_oian_table.py”)
Check if the script file exists
if script_file_path.exists(): import sys sys.path.append(str(script_file_path.parent)) # Add the directory of the script to the system path
from process_oian_table import process_oian_table # Import the specific function
# Define the column to filter by and the identifiers to include
filter_column = 'innervation_identifier' # Choose the column you want to filter by
filter_identifiers = ['nerve_to_subclavius'] # Replace with actual identifiers you want to include
# Call the function to get the HTML table with filtering
html_table = process_oian_table(filter_column=filter_column, filter_identifiers=filter_identifiers)
if html_table:
# Render the HTML table for display
display(HTML(html_table)) # Use display to render the HTML properly
else: print(“Script file does not exist. Please check the path.”)
```
Citation
For attribution, please cite this work as:
Yomogida N, Kerstein C. Nerve to Subclavius. https://yomokerst.com/The
Archive/Anatomy/Nerves/Upper extremity
nerves/nerve_to_subclavius.html